home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / wd.zip / STRUCTS.H < prev    next >
Text File  |  1987-10-02  |  664b  |  63 lines

  1.  
  2. struct type_htable
  3. {
  4.     int drv_number;
  5.     int cyl_number;
  6.     int head_number;
  7.     int sec_number;
  8.     int blk_size;
  9.     int max_cyl;
  10.     int max_head;
  11.     int max_sec;
  12.     int precomp;
  13.     int skew;
  14.     int alt_sector;
  15.     int retry;
  16.     int step;
  17.     int ileave;
  18.     int ecc_len;
  19.     int ecc;
  20.     int sec_size;
  21.     float bits_read;
  22.  
  23. };
  24.  
  25. struct type_task_file
  26. {
  27.     int error;
  28.     int secnt;
  29.     int sector;
  30.     int cyllo;
  31.     int cylhi;
  32.     int SDH;
  33.     int status;
  34.     int secstat;
  35.     int DIR;
  36. };
  37.  
  38. struct type_esfile
  39. {
  40.     int xfrlo;
  41.     int xfrhi;
  42.     int plo;
  43.     int gap;
  44.     int stat;
  45. };
  46.  
  47. union type_scan
  48. {
  49.    int    c;
  50.    char ch[2];
  51. };
  52.  
  53. struct type_error
  54. {
  55.     int cyl;
  56.     int head;
  57. };
  58.  
  59.  
  60.  
  61.  
  62.  
  63.